home *** CD-ROM | disk | FTP | other *** search
- /*
- * dbgAsm.s --
- *
- * Contains misc. assembler routines for the PMAX.
- *
- * Copyright (C) 1989 Digital Equipment Corporation.
- * Permission to use, copy, modify, and distribute this software and
- * its documentation for any purpose and without fee is hereby granted,
- * provided that the above copyright notice appears in all copies.
- * Digital Equipment Corporation makes no representations about the
- * suitability of this software for any purpose. It is provided "as is"
- * without express or implied warranty.
- *
- * $Header: /cdrom/src/kernel/Cvsroot/kernel/dbg/ds3100.md/dbgAsm.s,v 9.0 89/09/12 14:56:12 douglis Stable $ SPRITE (DECWRL)
- */
-
- #include <regdef.h>
-
- /*----------------------------------------------------------------------------
- *
- * Dbg_Call --
- *
- * Trap to the debugger.
- *
- * Results:
- * None.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------------
- */
- .globl Dbg_Call
- .ent Dbg_Call, 0
- Dbg_Call:
- .frame sp, 0, ra
- break 0
- j ra
- .end Dbg_Call
-
-